home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / diverses / him / wndem1tc.mak < prev    next >
Encoding:
Text File  |  1988-12-01  |  1.9 KB  |  96 lines

  1. # ********************* Makefile **************************
  2. # Makefile Name: wndem1tc.mak
  3. #
  4. # Make Program to Use: Borland Make
  5. #
  6. # Description: Makes the HIM Help Manager demo WNDEMO1.exe
  7. #              using Borland's Turbo C.
  8. #
  9. # Programs Used During Make:    Borland Turbo C compiler V1.5
  10. #                               Borland Turbo Linker     V1.x
  11. #
  12. # Usage:
  13. #           make  -DMODEL=x -fwndem1tc.mak
  14. #
  15. #           where x is s, c, m, or l   case is important
  16. #/*
  17. # *
  18. # *   Copyright 1988  Allsoft (tm)
  19. # *   100 Calle Playa Del Sol NE
  20. # *   Albuquerque, NM  87109
  21. # *
  22. # *   ALL RIGHTS RESERVED.
  23. # *
  24. # *   Unauthorized distribution, adaptation or use may be 
  25. # *   subject to civil and criminal penalties.
  26. # *
  27. # */
  28. # ******* Filled by Polytron Version Control System ********
  29. #
  30. # $Author:   james borders  $
  31. #
  32. # $Date:   01 Dec 1988 12:05:30  $
  33. #
  34. # $Revision:   1.0  $
  35. #
  36. # **********************************************************
  37. #
  38. # NOTE:
  39. #
  40. # The Turbo C configuration file TURBOC.CFG must exist in the
  41. # current directory or in the directory containing TCC.EXE.
  42. # This file must have -I and -L directives which tell the Turbo
  43. # compiler and linker where to search for include files and libraries.
  44. #
  45. #
  46. # Compiler code for library identification
  47. #
  48. # ms == Microsoft C
  49. # tc == Turbo C
  50. #
  51. COMP =tc
  52. #
  53. # compiler default switches
  54. #
  55. OPT  =-G -O -K -w-pia -w-par
  56. #
  57. # other macros
  58. #
  59. # default model is LARGE
  60. #
  61. !if !$d(MODEL)
  62. MODEL = l
  63. !endif
  64.  
  65. CVC   = 
  66. CVL   = 
  67. REV   = 
  68. SRCS  = 
  69. DOCS  =
  70. OBJS  = wndemo1.obj
  71. EXES  = 
  72. LIBS  = him$(COMP)$(MODEL).lib
  73. LIB   = 
  74.  
  75. #
  76. # transformation rules
  77. #
  78. .c.obj: 
  79.         tcc -c -DTURBOC -m$(MODEL) $(OPT) $(CVC) $*.c
  80.  
  81. #
  82. # targets and dependencies
  83. #
  84. #
  85. # .exe creation
  86. #
  87. wndemo1.exe :   wndemo1.obj 
  88.         tcc -m$(MODEL) $(OBJS) $(LIBS)
  89.  
  90. wndemo1.obj :  wndemo1.c
  91.  
  92.  
  93.  
  94.  
  95.